runtime.gcBits.bytep (method)

10 uses

	runtime (current package)
		mbitmap.go#L1096: 	bytes := (*[8]uint8)(unsafe.Pointer(s.allocBits.bytep(uintptr(whichByte))))
		mbitmap.go#L1507: 		mrkBits := *(*uint64)(unsafe.Pointer(s.gcmarkBits.bytep(i)))
		mgcmark_greenteagc.go#L208: 		*(*uintptr)(unsafe.Pointer(dst.bytep(i))) |= bswapIfBigEndian(marks)
		mgcmark_greenteagc.go#L232: 		bits.bytep = s.gcmarkBits.bytep(objIndex / 8)
		mgcsweep.go#L667: 		if (*s.gcmarkBits.bytep(obj / 8)&^*s.allocBits.bytep(obj / 8))>>(obj%8) != 0 {
		mgcsweep.go#L672: 			if *s.gcmarkBits.bytep(i)&^*s.allocBits.bytep(i) != 0 {
		mheap.go#L2868: func (b *gcBits) bytep(n uintptr) *uint8 {
		mheap.go#L2875: 	return b.bytep(n / 8), 1 << (n % 8)